home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / timetest / timer.dfm / timer.txt
Encoding:
Text File  |  1995-12-22  |  3.4 KB  |  176 lines

  1. object Form1: TForm1
  2.   Left = 288
  3.   Top = 96
  4.   HorzScrollBar.Visible = False
  5.   VertScrollBar.Visible = False
  6.   BorderIcons = [biSystemMenu, biMinimize]
  7.   BorderStyle = bsSingle
  8.   Caption = 'Timing Test'
  9.   ClientHeight = 215
  10.   ClientWidth = 345
  11.   Font.Color = clWindowText
  12.   Font.Height = -13
  13.   Font.Name = 'System'
  14.   Font.Style = []
  15.   PixelsPerInch = 96
  16.   Position = poScreenCenter
  17.   OnCreate = FormCreate
  18.   TextHeight = 16
  19.   object Label1: TLabel
  20.     Left = 15
  21.     Top = 20
  22.     Width = 136
  23.     Height = 16
  24.     Caption = 'Number of Iterations:'
  25.   end
  26.   object T1Addr: TLabel
  27.     Left = 159
  28.     Top = 192
  29.     Width = 68
  30.     Height = 16
  31.     Hint = 'Memory location so you can find out what it'#39's doing!'
  32.     Caption = '0000:0000'
  33.     ParentShowHint = False
  34.     ShowHint = True
  35.   end
  36.   object T2Addr: TLabel
  37.     Left = 258
  38.     Top = 192
  39.     Width = 68
  40.     Height = 16
  41.     Hint = 'Memory location so you can find out what it'#39's doing!'
  42.     Caption = '0000:0000'
  43.     ParentShowHint = False
  44.     ShowHint = True
  45.   end
  46.   object Panel1: TPanel
  47.     Left = 17
  48.     Top = 53
  49.     Width = 310
  50.     Height = 95
  51.     TabOrder = 0
  52.     object Label2: TLabel
  53.       Left = 4
  54.       Top = 18
  55.       Width = 129
  56.       Height = 16
  57.       Hint = '+/-  0.055 sec'
  58.       Caption = 'Total Elapsed Time:'
  59.       ParentShowHint = False
  60.       ShowHint = True
  61.     end
  62.     object Label3: TLabel
  63.       Left = 4
  64.       Top = 54
  65.       Width = 118
  66.       Height = 16
  67.       Caption = 'Time per Iteration:'
  68.     end
  69.     object Single: TLabel
  70.       Left = 145
  71.       Top = 54
  72.       Width = 28
  73.       Height = 16
  74.       Caption = '- - - -'
  75.       ParentShowHint = False
  76.       ShowHint = False
  77.     end
  78.     object Single2: TLabel
  79.       Left = 241
  80.       Top = 54
  81.       Width = 28
  82.       Height = 16
  83.       Caption = '- - - -'
  84.       ParentShowHint = False
  85.       ShowHint = False
  86.     end
  87.     object Total: TLabel
  88.       Left = 145
  89.       Top = 18
  90.       Width = 28
  91.       Height = 16
  92.       Caption = '- - - -'
  93.       ParentShowHint = False
  94.       ShowHint = False
  95.     end
  96.     object Total2: TLabel
  97.       Left = 241
  98.       Top = 18
  99.       Width = 28
  100.       Height = 16
  101.       Caption = '- - - -'
  102.       ParentShowHint = False
  103.       ShowHint = False
  104.     end
  105.   end
  106.   object Niter: TEdit
  107.     Left = 162
  108.     Top = 16
  109.     Width = 82
  110.     Height = 23
  111.     Font.Color = clWindowText
  112.     Font.Height = -12
  113.     Font.Name = 'System'
  114.     Font.Style = []
  115.     ParentFont = False
  116.     TabOrder = 3
  117.     Text = '1'
  118.   end
  119.   object Plus: TButton
  120.     Left = 255
  121.     Top = 18
  122.     Width = 20
  123.     Height = 20
  124.     Caption = '+'
  125.     Font.Color = clWindowText
  126.     Font.Height = -13
  127.     Font.Name = 'System'
  128.     Font.Style = [fsBold]
  129.     ParentFont = False
  130.     TabOrder = 4
  131.     OnClick = PlusClick
  132.   end
  133.   object Minus: TButton
  134.     Left = 284
  135.     Top = 18
  136.     Width = 20
  137.     Height = 20
  138.     Caption = '-'
  139.     Font.Color = clBlack
  140.     Font.Height = -15
  141.     Font.Name = 'Arial'
  142.     Font.Pitch = fpFixed
  143.     Font.Style = [fsBold]
  144.     ParentFont = False
  145.     TabOrder = 5
  146.     OnClick = MinusClick
  147.   end
  148.   object Exit: TButton
  149.     Left = 41
  150.     Top = 168
  151.     Width = 71
  152.     Height = 26
  153.     Caption = 'Exit'
  154.     TabOrder = 6
  155.     OnClick = ExitClick
  156.   end
  157.   object Test1: TButton
  158.     Left = 153
  159.     Top = 158
  160.     Width = 71
  161.     Height = 27
  162.     Caption = 'Test 1'
  163.     TabOrder = 1
  164.     OnClick = Test1Click
  165.   end
  166.   object Test2: TButton
  167.     Left = 252
  168.     Top = 158
  169.     Width = 71
  170.     Height = 27
  171.     Caption = 'Test 2'
  172.     TabOrder = 2
  173.     OnClick = Test2Click
  174.   end
  175. end
  176.